String s = "Azzurro";
char[] c = s.toCharArray();
println(c[0]); // Prints "A"
println(c[1]); // Prints "z"